Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictExt Class / GetRect Method / GetRect(IPdfDict,PdfName,Nullable<RectangleF>) Method
The current dictionary.
The key of the value to get.
The default value.

In This Topic
    GetRect(IPdfDict,PdfName,Nullable<RectangleF>) Method
    In This Topic
    Gets the System.Drawing.RectangleF associated with the specified key (in a PDF a System.Drawing.RectangleF should be represented as an array of 4 floats).

    Gets defValue if the value does not exist or cannot be converted to a System.Drawing.RectangleF.

    Adds a warning to GrapeCity.Documents.Pdf.GcPdfDocument.ParserLog if the value cannot be converted to a System.Drawing.RectangleF.
    Syntax
    'Declaration
     
    Public Overloads Shared Function GetRect( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       ByVal defValue As System.Nullable(Of RectangleF) _
    ) As System.Nullable(Of RectangleF)
    public static System.Nullable<RectangleF> GetRect( 
       IPdfDict dict,
       PdfName key,
       System.Nullable<RectangleF> defValue
    )

    Parameters

    dict
    The current dictionary.
    key
    The key of the value to get.
    defValue
    The default value.

    Return Value

    The value associated with the specified key.
    See Also